# This demonstration script prompts the user to select a color.
#
# SCCS: @(#) clrpick.tcl 1.3 97/03/02 16:20:12
if {![info exists widgetDemo]} {
error "This script should be run from the \"widget\" demo."
}
set w .clrpick
catch {destroy $w}
toplevel $w
wm title $w "Color Selection Dialog"
wm iconname $w "colors"
positionWindow $w
label $w.msg -font $font -wraplength 4i -justify left -text "Press the buttons below to choose the foreground and background colors for the widgets in this window."